CoverageRange

data class CoverageRange(startOffset: Int, endOffset: Int, count: Int)

Coverage data for a source range.

Constructors

CoverageRange
Link copied to clipboard
fun CoverageRange(startOffset: Int, endOffset: Int, count: Int)

Properties

count
Link copied to clipboard
val count: Int
Collected execution count of the source range.
endOffset
Link copied to clipboard
val endOffset: Int
JavaScript script source offset for the range end.
startOffset
Link copied to clipboard
val startOffset: Int
JavaScript script source offset for the range start.

Sources

jvm source
Link copied to clipboard